home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / program / popup.zoo / demo / demo.h < prev    next >
Text File  |  1991-11-18  |  2KB  |  166 lines

  1. MITEM MENU_DESK[]=
  2. {
  3.     -1,0,-1,-1,0,0,0,0,
  4.     MSELECTABLE,0L,
  5.     " ◆About the demo... ",
  6.     "Display author and copyright"
  7. };
  8.  
  9. #define ITM_ABOUT 0
  10.  
  11. MITEM MENU_FILE[]=
  12. {
  13.     1,0,-1,-1,0,0,0,0,
  14.     MSELECTABLE,0L,
  15.     "  ◆Check me ",
  16.     "Display/remove menu tick",
  17.  
  18.     2,0,-1,-1,0,0,0,0,
  19.     MSELECTABLE|MDISABLED,0L,
  20.     "#l",
  21.     0L,
  22.  
  23.     5,0,3,-1,0,0,0,0,
  24.     MSELECTABLE,0L,
  25.     "  Files   ⇨",
  26.     0L,
  27.  
  28.     4,3,-1,0,0,0,0,0,
  29.     MSELECTABLE,0L,
  30.     " Load ",
  31.     "Load a file (dummy option!)",
  32.  
  33.     -1,3,-1,0,0,0,0,0,
  34.     MSELECTABLE,0L,
  35.     " Save",
  36.     "Save a file (dummy option !)",
  37.  
  38.     -1,0,-1,-1,0,0,0,0,
  39.     MSELECTABLE,0L,
  40.     "  ◆Quit",
  41.     "Quit the demonstration"
  42. };
  43.  
  44. #define ITM_CHECKME 0
  45. #define ITM_QUIT 5
  46.  
  47. MITEM MENU_OPTIONS[]=
  48. {
  49.     -1,0,1,-1,0,0,0,0,
  50.     MSELECTABLE,0L,
  51.     " Display menu ⇨",
  52.     "A few popup menu demos",
  53.  
  54.     2,1,-1,0,0,0,0,0,
  55.     MSELECTABLE,0L,
  56.     " ◆Drop down ",
  57.     "Show menu, exit when clicked",
  58.  
  59.     -1,1,-1,0,0,0,0,0,
  60.     MSELECTABLE,0L,
  61.     " ◆Hold down",
  62.     "Show while button is down"
  63. };
  64.  
  65. #define ITM_DROPDOWN 1
  66. #define ITM_HOLDDOWN 2
  67.  
  68. MITEM MENU_DROPDOWN[]=
  69. {
  70.     1,0,-1,-1,0,0,0,0,
  71.     MSELECTABLE,0L,
  72.     " Save file ",
  73.     "Save file to disk drive",
  74.  
  75.     2,0,-1,-1,0,0,0,0,
  76.     MSELECTABLE,0L,
  77.     " Load file",
  78.     "Load file from disk",
  79.  
  80.     3,0,-1,-1,0,0,0,0,
  81.     MSELECTABLE|MDISABLED,0L,
  82.     "#l",
  83.     0L,
  84.  
  85.     4,0,-1,-1,0,0,0,0,
  86.     MSELECTABLE,0L,
  87.     " Quit",
  88.     0L,
  89.  
  90.     -1,0,5,-1,0,0,0,0,
  91.     MSELECTABLE,0L,
  92.     " Info     ⇨",
  93.     "Information about this menu",
  94.  
  95.     6,5,-1,0,0,0,0,0,
  96.     0L,0L,
  97.     " The items in this menu do  ",
  98.     0L,
  99.  
  100.     7,5,-1,0,0,0,0,0,
  101.     0L,0L,
  102.     " not actually do anything.",
  103.     0L,
  104.  
  105.     8,5,-1,0,0,0,0,0,
  106.     0L,0L,
  107.     " This is just an example of",
  108.     0L,
  109.  
  110.     -1,5,-1,0,0,0,0,0,
  111.     0L,0L,
  112.     " a possible drop down menu.",
  113.     0L
  114. };
  115.  
  116.  
  117. MITEM MENU_HOLDDOWN[]=
  118. {
  119.     1,0,-1,-1,0,0,0,0,
  120.     MSELECTABLE,0L,
  121.     " Bold      ",
  122.     "Bold text",
  123.  
  124.     2,0,-1,-1,0,0,0,0,
  125.     MSELECTABLE,0L,
  126.     " Underline",
  127.     "Underlined text",
  128.  
  129.     3,0,-1,-1,0,0,0,0,
  130.     MSELECTABLE,0L,
  131.     " Italic",
  132.     "Italicised text",
  133.  
  134.     4,0,-1,-1,0,0,0,0,
  135.     MSELECTABLE|MDISABLED,0L,
  136.     "#l",
  137.     0L,
  138.  
  139.     -1,0,5,-1,0,0,0,0,
  140.     MSELECTABLE,0L,
  141.     " Info     ⇨",
  142.     "About this popup menu",
  143.  
  144.     6,5,-1,0,0,0,0,0,
  145.     0L,0L,
  146.     " This menu does not actually ",
  147.     0L,
  148.  
  149.     7,5,-1,0,0,0,0,0,
  150.     0L,0L,
  151.     " do anything, it just serves",
  152.     0L,
  153.  
  154.     8,5,-1,0,0,0,0,0,
  155.     0L,0L,
  156.     " as an example of a menu",
  157.     0L,
  158.  
  159.     -1,5,-1,0,0,0,0,0,
  160.     0L,0L,
  161.     " that you might create.",
  162.     0L
  163. };
  164.  
  165.  
  166.